455a4475c42473ccca1682efb1bfc57f6db574b9,spring-xd-dirt/src/main/java/org/springframework/xd/dirt/server/container/ContainerServerApplication.java,ContainerServerApplication,run,#String#,87
Before Change
.logStartupInfo(false)
.profiles(XdProfiles.CONTAINER_PROFILE)
.listeners(bootstrapContext.commandLineListener())
.listeners(classLoaderFactory)
.child(SharedServerContextConfiguration.class, ContainerOptions.class)
.resourceLoader(classLoaderFactory.getResolver())
.logStartupInfo(false)
.listeners(bootstrapContext.commandLineListener())
.child(ContainerServerApplication.class)
.logStartupInfo(false)
.listeners(
ApplicationUtils.mergeApplicationListeners(bootstrapContext.commandLineListener(),
After Change
MessageBusClassLoaderFactory classLoaderFactory = new MessageBusClassLoaderFactory();
DecryptorContext decryptorContext = new DecryptorContext();
this.containerContext = new SpringApplicationBuilder(ContainerOptions.class, ParentConfiguration.class)
.logStartupInfo(false)
.profiles(XdProfiles.CONTAINER_PROFILE)
.listeners(bootstrapContext.commandLineListener())
.listeners(classLoaderFactory)
.listeners(decryptorContext.propertiesDecryptor())
.child(SharedServerContextConfiguration.class, ContainerOptions.class)
.resourceLoader(classLoaderFactory.getResolver())
.logStartupInfo(false)
.listeners(bootstrapContext.commandLineListener())
.listeners(decryptorContext.propertiesDecryptor())
.child(ContainerServerApplication.class)
.logStartupInfo(false)
.listeners(
ApplicationUtils.mergeApplicationListeners(bootstrapContext.commandLineListener(),